home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d20 / pvert.arc / ADDR.H next >
Text File  |  1992-01-15  |  257b  |  10 lines

  1. typedef struct __address__ {
  2.     unsigned int zone,net,node,point;
  3.     char *domain;
  4.     struct __address__ *next;
  5. } ADDR;
  6.  
  7. int    parse_addr (char **p, ADDR *r,ADDR *rr);
  8. int    guess_rest (ADDR *r, ADDR *m);
  9. ADDR * best_guess (ADDR *r,ADDR *m);
  10.